This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Convert Multi-Value Field to JavaScript Array? ~Justin Minluternivu 16.Jan.04 11:58 PM a Web browser Domino Designer 6.0.3All Platforms
Splitting "hello" on a semicolon gives an array with one element (the zeroeth) having a value of "hello". <array>.length will return 1. You can use array handling code on this single-element array. Keep in mind, though, that the "real" separator for a multivalue field is <punctuation><space>, so you'll need to split(', ') or split('; ').